From: Michael Albinus Date: Sun, 6 Apr 2025 07:11:06 +0000 (+0200) Subject: ; Fix typo in Tramp X-Git-Tag: archive/raspbian/1%30.2+1-2+rpi1^2~2^2~24^2~155 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=bb756b195a7bc6b4cf3286d891a38459dac23cde;p=emacs.git ; Fix typo in Tramp * lisp/net/tramp-cache.el (with-tramp-saved-connection-property): Fix typo. --- diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el index 71b8cfa67bf..87e7feae188 100644 --- a/lisp/net/tramp-cache.el +++ b/lisp/net/tramp-cache.el @@ -473,10 +473,10 @@ used to cache connection properties of the local machine." (hash (tramp-get-hash-table key)) (cached (and (hash-table-p hash) (gethash ,property hash tramp-cache-undefined)))) - (tramp-message key 7 "Saved %s %s" property cached) + (tramp-message key 7 "Saved %s %s" ,property cached) (unwind-protect (progn ,@body) ;; Reset PROPERTY. Recompute hash, it could have been flushed. - (tramp-message key 7 "Restored %s %s" property cached) + (tramp-message key 7 "Restored %s %s" ,property cached) (setq hash (tramp-get-hash-table key)) (if (not (eq cached tramp-cache-undefined)) (puthash ,property cached hash)